home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 318 / utilsrc / makefile < prev    next >
Encoding:
Makefile  |  1988-10-20  |  591 b   |  33 lines

  1.  
  2. # kludge makefile...
  3.  
  4. #.c.o:
  5. #    xcc -c $<
  6.  
  7. CFLAGS = -O
  8.  
  9. make.ttp : make.o arscan.o glob.o cruft.o
  10.     cc -s -o make.ttp make.o arscan.o glob.o cruft.o
  11.  
  12. #
  13. # the 'regular' linker, produces atari executables
  14. #
  15. ld.ttp : ld.c
  16.     cc -s -o ld.ttp -O ld.c
  17.  
  18. #
  19. # the other linker, (really the original one) that creates
  20. # pseudo executables suitable for use with gdb
  21. #
  22. sym-ld.ttp : sym-ld.c
  23.     cc -s -o sym-ld.ttp -O sym-ld.c
  24.  
  25. xld.ttp : xld.c
  26.     cc -c -O xld.c
  27.     ld -s -o xld.ttp f:\gnu\lib\crt0.o xld.o -lgnu.olb
  28.  
  29. #
  30. # obj file describer?
  31. #
  32. nm.ttp : nm.c
  33.     cc -s -o nm.ttp -O nm.c